32d29b9701d6224316d1cb1d57285438b5588cdb,clc/modules/storage-controller/src/main/java/edu/ucsb/eucalyptus/cloud/ws/BlockStorage.java,BlockStorage,DeleteStorageSnapshot,#DeleteStorageSnapshotType#,457
Before Change
DeleteStorageSnapshotResponseType reply = ( DeleteStorageSnapshotResponseType ) request.getReply();
if(!StorageProperties.enableSnapshots || !StorageProperties.enableStorage) {
StorageProperties.updateWalrusUrl();
if(!StorageProperties.enableSnapshots)
LOG.error("Snapshots have been disabled. Please check connection to Walrus.");
return reply;
}
After Change
public DeleteStorageSnapshotResponseType DeleteStorageSnapshot( DeleteStorageSnapshotType request ) throws EucalyptusCloudException {
DeleteStorageSnapshotResponseType reply = ( DeleteStorageSnapshotResponseType ) request.getReply();
StorageProperties.updateWalrusUrl();
if(!StorageProperties.enableSnapshots) {
LOG.error("Snapshots have been disabled. Please check connection to Walrus.");
return reply;